home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr25 / rxcalc.zip / WHOLE.CAL < prev   
Text File  |  1993-03-01  |  228b  |  5 lines

  1. /* Validate a Rexx whole number */
  2. parse arg number                       /* get the number             */
  3. call lineout 'd:\rexxcalc\calc.log', number
  4. return datatype(number, 'Whole')       /* return the validation      */
  5.